Skip to main content

Material swatch

Sometimes you may want to show your materials separately from the rest of the model.

Result
Loading...
Live Editor
function Component() {
  const viewer = useRef(null);
  useLayoutEffect(() => {
    if (viewer.current) {
      viewer.current.features = {
        UPHOLSTERY: "CORD_EMERALD", // or "SMART_LEATHER_SADDLE", "SOFT_WOOL_OATMEAL"
        LEGS: "TAPERED_METAL_LEG_BRASS", // or "TAPERED_METAL_LEG_BLACK"
      };
    }
  }, [viewer]);

  return (
    <cylindo-viewer ref={viewer} customer-id="5098" code="SECTIONAL PDP">
      <cylindo-swatch
        feature-code="UPHOLSTERY"
        zoomable
        display-mode="fit-inside-viewer"
        thumbnail-crop="0.1,0.1, 0.2, 0.2"
      />
      <cylindo-swatch feature-code="LEGS" />
      <cylindo-swatch feature-code="LEGS" thumbnail-crop="0, 0, 1" />
      <cylindo-thumbnail-bar></cylindo-thumbnail-bar>
    </cylindo-viewer>
  );
}

Props

NameTypeDefaultDescription
altstring""Alternative text for the material item. This is used by screen readers.
customer-idstringnullThe customer ID of the material to show. It falls back to the customer ID from the <cylindo-viewer>.
display-modestring"cover-viewer"Determines how the material image fits within the viewer's content area.
feature-codestringnullThe feature code of the material to show.
thumbnail-cropstring"0.03125, 0.03125, 0.0625"The crop applied to the swatch thumbnail.